home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-08-13 | 975 b | 39 lines | [TEXT/ttxt] |
- #
- # Sound Demonstration Program
- # written for the Boston MacWorld Expo
- # using the Macintosh Programmer's Workshop
- #
- # © 1986 Fred A. Huxham
- #
- #--------------------------------------
- # This is the Makefile
- #--------------------------------------
- #
- # Options for the C compiler and Assembler
- COptions =
- AOptions = -case on
-
- #------------------------------------------------------------
-
- SoundDemo.rsrc ƒ SoundDemo.r ErrDialog.r Notes.r
- Rez -o SoundDemo.rsrc -t RSRC -c 'MPS ' ∂
- {RIncludes}Types.r ∂
- SoundDemo.r ∂
- Notes.r ∂
- ErrDialog.r
-
- #------------------------------------------------------------
-
- SoundDemo ƒ SoundDemo.a.o SoundDemo.c.o ErrDialog.c.o SoundDemo.rsrc
- Duplicate -r -y SoundDemo.rsrc SoundDemo
- Link -ot "APPL" -oc "Snd1" -o SoundDemo ∂
- SoundDemo.a.o ∂
- SoundDemo.c.o ∂
- ErrDialog.c.o ∂
- {CLibraries}CInterface.o ∂
- {CLibraries}CRuntime.o ∂
- {CLibraries}StdCLib.o
- SetFile -a B SoundDemo
-
- #------------------------------------------------------------
-